const go/token.FUNC
15 uses
go/token (current package)
token.go#L109: FUNC
token.go#L215: FUNC: "func",
go/parser
parser.go#L831: case token.IDENT, token.MUL, token.ARROW, token.FUNC, token.CHAN, token.MAP, token.STRUCT, token.INTERFACE, token.LPAREN:
parser.go#L864: case token.MUL, token.ARROW, token.FUNC, token.LBRACK, token.CHAN, token.MAP, token.STRUCT, token.INTERFACE, token.LPAREN:
parser.go#L1128: pos := p.expect(token.FUNC)
parser.go#L1404: case token.FUNC:
parser.go#L1510: case token.FUNC:
parser.go#L2465: token.IDENT, token.INT, token.FLOAT, token.IMAG, token.CHAR, token.STRING, token.FUNC, token.LPAREN, // operands
parser.go#L2798: pos := p.expect(token.FUNC)
parser.go#L2868: case token.FUNC:
go/printer
nodes.go#L875: p.print(token.FUNC)
nodes.go#L1055: p.print(token.FUNC)
nodes.go#L1923: p.print(token.FUNC, blank)
nodes.go#L1960: tok = token.FUNC
nodes.go#L1986: p.linebreak(p.lineFor(d.Pos()), min, ignore, tok == token.FUNC && p.numLines(d) > 1)